type github.com/andybalholm/brotli.histogramLiteral

56 uses

	github.com/andybalholm/brotli (current package)
		bit_cost.go#L45: func populationCostLiteral(histogram *histogramLiteral) float64 {
		block_splitter_literal.go#L11: func initialEntropyCodesLiteral(data []byte, length uint, stride uint, num_histograms uint, histograms []histogramLiteral) {
		block_splitter_literal.go#L30: func randomSampleLiteral(seed *uint32, data []byte, length uint, stride uint, sample *histogramLiteral) {
		block_splitter_literal.go#L41: func refineEntropyCodesLiteral(data []byte, length uint, stride uint, num_histograms uint, histograms []histogramLiteral) {
		block_splitter_literal.go#L47: 		var sample histogramLiteral
		block_splitter_literal.go#L57: func findBlocksLiteral(data []byte, length uint, block_switch_bitcost float64, num_histograms uint, histograms []histogramLiteral, insert_cost []float64, cost []float64, switch_signal []byte, block_id []byte) uint {
		block_splitter_literal.go#L181: func buildBlockHistogramsLiteral(data []byte, length uint, block_ids []byte, num_histograms uint, histograms []histogramLiteral) {
		block_splitter_literal.go#L197: 	var all_histograms []histogramLiteral = make([]histogramLiteral, all_histograms_capacity)
		block_splitter_literal.go#L202: 	var histograms []histogramLiteral = make([]histogramLiteral, brotli_min_size_t(num_blocks, histogramsPerBatch))
		block_splitter_literal.go#L258: 			var new_array []histogramLiteral
		block_splitter_literal.go#L262: 			new_array = make([]histogramLiteral, _new_size)
		block_splitter_literal.go#L314: 			var histo histogramLiteral
		block_splitter_literal.go#L378: 	var histograms []histogramLiteral
		block_splitter_literal.go#L396: 	histograms = make([]histogramLiteral, num_histograms)
		brotli_bit_stream.go#L1206: func buildAndStoreEntropyCodesLiteral(self *blockEncoder, histograms []histogramLiteral, histograms_size uint, alphabet_size uint, tree []huffmanTree, storage_ix *uint, storage []byte) {
		brotli_bit_stream.go#L1370: func buildHistograms(input []byte, start_pos uint, mask uint, commands []command, lit_histo *histogramLiteral, cmd_histo *histogramCommand, dist_histo *histogramDistance) {
		brotli_bit_stream.go#L1412: 	var lit_histo histogramLiteral
		brotli_bit_stream.go#L1477: 		var lit_histo histogramLiteral
		cluster_literal.go#L13: func compareAndPushToQueueLiteral(out []histogramLiteral, cluster_size []uint32, idx1 uint32, idx2 uint32, max_num_pairs uint, pairs []histogramPair, num_pairs *uint) {
		cluster_literal.go#L49: 		var combo histogramLiteral = out[idx1]
		cluster_literal.go#L76: func histogramCombineLiteral(out []histogramLiteral, cluster_size []uint32, symbols []uint32, clusters []uint32, pairs []histogramPair, num_clusters uint, symbols_size uint, max_clusters uint, max_num_pairs uint) uint {
		cluster_literal.go#L158: func histogramBitCostDistanceLiteral(histogram *histogramLiteral, candidate *histogramLiteral) float64 {
		cluster_literal.go#L162: 		var tmp histogramLiteral = *histogram
		cluster_literal.go#L172: func histogramRemapLiteral(in []histogramLiteral, in_size uint, clusters []uint32, num_clusters uint, out []histogramLiteral, symbols []uint32) {
		cluster_literal.go#L217: func histogramReindexLiteral(out []histogramLiteral, symbols []uint32, length uint) uint {
		cluster_literal.go#L220: 	var tmp []histogramLiteral
		cluster_literal.go#L236: 	tmp = make([]histogramLiteral, next_index)
		cluster_literal.go#L257: func clusterHistogramsLiteral(in []histogramLiteral, in_size uint, max_histograms uint, out []histogramLiteral, out_size *uint, histogram_symbols []uint32) {
		histogram.go#L8: type histogramLiteral struct {
		histogram.go#L14: func histogramClearLiteral(self *histogramLiteral) {
		histogram.go#L20: func clearHistogramsLiteral(array []histogramLiteral, length uint) {
		histogram.go#L27: func histogramAddLiteral(self *histogramLiteral, val uint) {
		histogram.go#L32: func histogramAddVectorLiteral(self *histogramLiteral, p []byte, n uint) {
		histogram.go#L45: func histogramAddHistogramLiteral(self *histogramLiteral, v *histogramLiteral) {
		histogram.go#L183: func buildHistogramsWithContext(cmds []command, literal_split *blockSplit, insert_and_copy_split *blockSplit, dist_split *blockSplit, ringbuffer []byte, start_pos uint, mask uint, prev_byte byte, prev_byte2 byte, context_modes []int, literal_histograms []histogramLiteral, insert_and_copy_histograms []histogramCommand, copy_dist_histograms []histogramDistance) {
		metablock.go#L24: 	literal_histograms        []histogramLiteral
		metablock.go#L142: 	var literal_histograms []histogramLiteral
		metablock.go#L205: 	literal_histograms = make([]histogramLiteral, literal_histograms_size)
		metablock.go#L232: 		mb.literal_histograms = make([]histogramLiteral, (mb.literal_histograms_size))
		metablock.go#L281: 	histograms_        []histogramLiteral
		metablock.go#L291: func initContextBlockSplitter(self *contextBlockSplitter, alphabet_size uint, num_contexts uint, min_block_size uint, split_threshold float64, num_symbols uint, split *blockSplit, histograms *[]histogramLiteral, histograms_size *uint) {
		metablock.go#L318: 		*histograms = make([]histogramLiteral, (*histograms_size))
		metablock.go#L339: 	var histograms []histogramLiteral = self.histograms_
		metablock.go#L368: 		var combined_histo []histogramLiteral = make([]histogramLiteral, (2 * num_contexts))
		metablock_literal.go#L17: 	histograms_        []histogramLiteral
		metablock_literal.go#L27: func initBlockSplitterLiteral(self *blockSplitterLiteral, alphabet_size uint, min_block_size uint, split_threshold float64, num_symbols uint, split *blockSplit, histograms *[]histogramLiteral, histograms_size *uint) {
		metablock_literal.go#L48: 		*histograms = make([]histogramLiteral, *histograms_size)
		metablock_literal.go#L68: 	var histograms []histogramLiteral = self.histograms_
		metablock_literal.go#L86: 		var combined_histo [2]histogramLiteral